Remove Method (ListBase<T>)
Removes the first occurrence of a specific object from the
ListBase<T>.
'Declaration
Public Function Remove( _
ByVal As _
) As Boolean
'Usage
Dim instance As ListBase(Of T)
Dim item As
Dim value As Boolean
value = instance.Remove(item)
Parameters
- item
- The object to remove from the ListBase<T>.
Return Value
true if was successfully removed from the
ListBase<T>; otherwise, false. This method also returns false if is not found in the original
ListBase<T>.